sync/atomic.Int32.v (field)
6 uses
sync/atomic (current package)
type.go#L70: v int32
type.go#L74: func (x *Int32) Load() int32 { return LoadInt32(&x.v) }
type.go#L77: func (x *Int32) Store(val int32) { StoreInt32(&x.v, val) }
type.go#L80: func (x *Int32) Swap(new int32) (old int32) { return SwapInt32(&x.v, new) }
type.go#L84: return CompareAndSwapInt32(&x.v, old, new)
type.go#L88: func (x *Int32) Add(delta int32) (new int32) { return AddInt32(&x.v, delta) }
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |